-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove usage of the report_builder
#710
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #710 +/- ##
==========================================
- Coverage 98.08% 98.07% -0.02%
==========================================
Files 432 432
Lines 36292 36066 -226
==========================================
- Hits 35598 35370 -228
- Misses 694 696 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #710 +/- ##
==========================================
- Coverage 98.08% 98.07% -0.02%
==========================================
Files 432 432
Lines 36292 36066 -226
==========================================
- Hits 35598 35370 -228
- Misses 694 696 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #710 +/- ##
==========================================
- Coverage 98.08% 98.07% -0.02%
==========================================
Files 432 432
Lines 36292 36066 -226
==========================================
- Hits 35598 35370 -228
- Misses 694 696 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #710 +/- ##
==========================================
- Coverage 98.08% 98.07% -0.02%
==========================================
Files 432 432
Lines 36292 36066 -226
==========================================
- Hits 35598 35370 -228
- Misses 694 696 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
|
6d7ca86
to
e3b4416
Compare
I think the intention of the `report_builder` setting was to build a `Report` from various database tables, instead of from the `report_json` blob. However, it is unclear if that is actually faster, as some of the involved tables are slow to query, and the `files_array` field was doing a storage request anyway. So the code was still doing two storage requests (`chunks` and `files_array`) plus various SELECTs, instead of doing just two storage requests (`report_json` and `chunks`).
e3b4416
to
25af637
Compare
I think the intention of the
report_builder
setting was to build aReport
from various database tables, instead of from thereport_json
blob.However, it is unclear if that is actually faster, as some of the involved tables are slow to query, and the
files_array
field was doing a storage request anyway.So the code was still doing two storage requests (
chunks
andfiles_array
) plus various SELECTs, instead of doing just two storage requests (report_json
andchunks
).